how to change the colum type in migration laravel

105

public function changeColumnType($table, $column, $newColumnType) {                
    DB::statement("ALTER TABLE $table CHANGE $column $column $newColumnType");
}

Comments

Submit
0 Comments